1
2
3
4
5
6 package spoon.reflect.visitor;
7
8 import spoon.reflect.declaration.CtCompilationUnit;
9 import spoon.reflect.declaration.CtElement;
10 import spoon.reflect.path.CtRole;
11 import spoon.reflect.visitor.chain.CtScannerListener;
12 import spoon.reflect.visitor.chain.ScanningMode;
13
14 import java.util.ArrayList;
15 import java.util.Collection;
16 import java.util.Map;
17
18
19
20
21
22
23
24
25
26
27
28
29 public class EarlyTerminatingScanner<T> extends CtScanner {
30
31 private boolean terminate = false;
32 private T result;
33 private CtScannerListener listener;
34 protected CtRole scannedRole;
35 private boolean visitCompilationUnitContent = false;
36
37 protected void terminate() {
38 terminate = true;
39 }
40
41 protected boolean isTerminated() {
42 return terminate;
43 }
44
45 protected void setResult(T result) {
46 this.result = result;
47 }
48
49
50
51
52 public T getResult() {
53 return result;
54 }
55
56
57
58
59 public CtScannerListener getListener() {
60 return listener;
61 }
62
63
64
65
66
67
68 public EarlyTerminatingScanner<T> setListener(CtScannerListener listener) {
69 this.listener = listener;
70 return this;
71 }
72
73 @Override
74 public void scan(CtRole role, Collection<? extends CtElement> elements) {
75 if (isTerminated() || elements == null) {
76 return;
77 }
78
79
80 for (CtElement e : new ArrayList<>(elements)) {
81 scan(role, e);
82 if (isTerminated()) {
83 return;
84 }
85 }
86 }
87
88 @Override
89 public void scan(CtRole role, Map<String, ? extends CtElement> elements) {
90 if (isTerminated() || elements == null) {
91 return;
92 }
93 for (CtElement obj : elements.values()) {
94 scan(role, obj);
95 if (isTerminated()) {
96 return;
97 }
98 }
99 }
100
101 @Override
102 public void scan(CtRole role, CtElement element) {
103 scannedRole = role;
104 super.scan(role, element);
105 }
106
107
108
109
110
111 @Override
112 public void scan(CtElement element) {
113 if (element == null || isTerminated()) {
114 return;
115 }
116 if (listener == null) {
117
118
119 doScan(scannedRole, element, ScanningMode.NORMAL);
120 } else {
121
122 ScanningMode mode = listener.enter(scannedRole, element);
123 if (mode != ScanningMode.SKIP_ALL) {
124
125 doScan(scannedRole, element, mode);
126
127 listener.exit(scannedRole, element);
128 }
129 }
130 }
131
132
133
134
135
136 protected void doScan(CtRole role, CtElement element, ScanningMode mode) {
137
138 if (mode.visitElement) {
139 onElement(role, element);
140 }
141 if (mode.visitChildren) {
142
143 element.accept(this);
144 }
145 }
146
147 @Override
148 public void visitCtCompilationUnit(CtCompilationUnit compilationUnit) {
149 if (isVisitCompilationUnitContent()) {
150 enter(compilationUnit);
151 scan(CtRole.COMMENT, compilationUnit.getComments());
152 scan(CtRole.ANNOTATION, compilationUnit.getAnnotations());
153 scan(CtRole.PACKAGE_DECLARATION, compilationUnit.getPackageDeclaration());
154 scan(CtRole.DECLARED_IMPORT, compilationUnit.getImports());
155
156 scan(CtRole.DECLARED_MODULE, compilationUnit.getDeclaredModule());
157
158 scan(CtRole.DECLARED_TYPE, compilationUnit.getDeclaredTypes());
159 exit(compilationUnit);
160 } else {
161 super.visitCtCompilationUnit(compilationUnit);
162 }
163 }
164
165
166
167
168
169
170 protected void onElement(CtRole role, CtElement element) {
171 }
172
173 @Override
174 public void scan(CtRole role, Object o) {
175 if (isTerminated() || o == null) {
176 return;
177 }
178 if (o instanceof CtElement) {
179 scan(role, (CtElement) o);
180 } else if (o instanceof Collection<?>) {
181 scan(role, (Collection<? extends CtElement>) o);
182 } else if (o instanceof Map<?, ?>) {
183 for (Object obj : ((Map) o).values()) {
184 scan(role, obj);
185 if (isTerminated()) {
186 return;
187 }
188 }
189 }
190 }
191
192
193
194
195 public boolean isVisitCompilationUnitContent() {
196 return visitCompilationUnitContent;
197 }
198
199
200
201
202
203 public EarlyTerminatingScanner<T> setVisitCompilationUnitContent(boolean visitCompilationUnitContent) {
204 this.visitCompilationUnitContent = visitCompilationUnitContent;
205 return this;
206 }
207 }